home *** CD-ROM | disk | FTP | other *** search
- global gStopPoint, gStopFlag, gSelList, gStopOffset
-
- on mouseUp
- if the selection = EMPTY then
- alert("Please make a selection in the Message field!")
- else
- set gSelList to [the selStart, the selEnd]
- set howManyChars to the selEnd - the selStart
- if howManyChars > 36 then
- alert("Please make a selection of 36 characters or less!")
- else
- set the textStyle of member "Message" to "Plain"
- set gStopOffset to (36 - howManyChars) / 2
- set gStopPoint to the selStart - gStopOffset + 36
- set the textStyle of char the selStart + 1 to the selEnd of member "Message" to "Bold"
- set gStopFlag to 1
- end if
- end if
- end
-